home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 007 / csubrtns.arc / VERSION.C < prev   
Encoding:
Text File  |  1985-07-06  |  384 b   |  13 lines

  1. /* version.c by Michael Hanson */
  2. /* you may use this, but not for profit, and give me credit */ 
  3. /* returns DOS version number in hex (hibyte-main ver, lobyte- sub version)
  4. should return 00xx for versions before 2.00) */
  5. ver()
  6. {
  7. #asm
  8.     mov AH,30h            ;get version number call
  9.     int 21h                ;dos function call
  10.     xchg al,ah            ;reorder so low part first
  11. #
  12. }
  13.